Design Twitter

Design a simplified version of Twitter where users can post tweets, follow/unfollow another user and is able to see the 10 most recent tweets in the user’s news feed. Your design should support the following methods:

  1. postTweet(userId, tweetId): Compose a new tweet.
  2. getNewsFeed(userId): Retrieve the 10 most recent tweet ids in the user’s news feed. Each item in the news feed must be posted by users who the user followed or by the user herself. Tweets must be ordered from most recent to least recent.
  3. follow(followerId, followeeId): Follower follows a followee.
  4. unfollow(followerId, followeeId): Follower unfollows a followee.

Example:

  1. Twitter twitter = new Twitter();
  2. // User 1 posts a new tweet (id = 5).
  3. twitter.postTweet(1, 5);
  4. // User 1's news feed should return a list with 1 tweet id -> [5].
  5. twitter.getNewsFeed(1);
  6. // User 1 follows user 2.
  7. twitter.follow(1, 2);
  8. // User 2 posts a new tweet (id = 6).
  9. twitter.postTweet(2, 6);
  10. // User 1's news feed should return a list with 2 tweet ids -> [6, 5].
  11. // Tweet id 6 should precede tweet id 5 because it is posted after tweet id 5.
  12. twitter.getNewsFeed(1);
  13. // User 1 unfollows user 2.
  14. twitter.unfollow(1, 2);
  15. // User 1's news feed should return a list with 1 tweet id -> [5],
  16. // since user 1 is no longer following user 2.
  17. twitter.getNewsFeed(1);